* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #fff;
  }
  
  .container {
    display: flex;
  }
  
  .left {
    background-color: lightgray;
    width: 15vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 3px;
    font-weight: 600;
    font-size: 18px;
  }
  
  .left i {
    color: darkblue;
  }
  
  .logoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #logo {
    height: 90px;
    width: 120px;
  }
  
  #menuBar {
    height: 30px;
    width: 20px;
  }
  
  .leftHeading {
    display: flex;
    align-items: start;
    gap: 5px;
  }
  
  .leftElement {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .leftElement a {
    text-decoration: none;
    padding: 3px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 2px;
  }
  
  .right {
    width: 85vw;
    height: 100vh;
    background-color: azure;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
  }
  
  .loginHeader {
    display: flex;
    width: 100%;
    height: 25vh;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  
  .loginHeader img {
    width: 30%;
    height: 100%;
  }
  
  .loginInformation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    padding: 10px;
    background-color: rgb(82, 76, 76);
    color: #fff;
    border-radius: 5px;
  }
  
  .loginInformation p {
    font-weight: 700;
  }
  
  .loginLogo {
    display: flex;
    justify-content: space-between;
  }
  
  .loginLogo i {
    font-size: 30px;
  }
  
  .loginLogo button {
    outline: none;
    background: rgb(37, 37, 248);
    padding: 2px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
  
  .ApplicationStatus {
    background-color: rgb(82, 76, 76);
    padding: 5px 0 5px 5px;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 2px;
  }
  
  .container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 20px);
  }
  
  .form-group label {
    margin-bottom: 5px;
  }
  
  .form-group input {
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 5%;
    border-radius: 4px;
  }
  
  #proceed-btn{
height: 30px;
width: 200px;
border-radius: 25px;
background: linear-gradient(green,lightblue);
padding-left: 20px;
margin-left: 35%;
margin-top: 10%;
  }

  @media screen and (max-width: 768px) {
    .left {
      width: 25vw;
      font-size: 10px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .container {
      flex-direction: column;
    }
  
    .left {
      width: 100vw;
      height: auto;
      flex-direction: row;
      overflow-x: scroll;
    }
  
    .left .logoContainer {
      flex-direction: row;
    }
  
    .leftHeading {
      flex-direction: column;
      align-items: center;
    }
  
    .right {
      width: 100vw;
      height: auto;
    }
  }